home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / Net_InetAddrToString.c < prev    next >
C/C++ Source or Header  |  1992-06-09  |  1KB  |  59 lines

  1. /* 
  2.  * Net_InetAddrToString.c --
  3.  *
  4.  *    Convert an internet address to a string.
  5.  *
  6.  * Copyright 1987 Regents of the University of California
  7.  * All rights reserved.
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  */
  16.  
  17. #ifndef lint
  18. static char rcsid[] = "$Header: /sprite/src/lib/c/netlib/RCS/Net_InetAddrToString.c,v 1.2 90/09/11 14:43:44 kupfer Exp $ SPRITE (Berkeley)";
  19. #endif not lint
  20.  
  21.  
  22. #include "sprite.h"
  23. #include "net.h"
  24. #include <stdio.h>
  25.  
  26.  
  27. /*
  28.  *----------------------------------------------------------------------
  29.  *
  30.  * Net_InetAddrToString --
  31.  *
  32.  *    Convert network-format internet address to base 256 d.d.d.d 
  33.  *    representation.
  34.  *
  35.  * Results:
  36.  *    Address of the string buffer.
  37.  *
  38.  * Side effects:
  39.  *    The buffer is overwritten.
  40.  *
  41.  *----------------------------------------------------------------------
  42.  */
  43.  
  44. char *
  45. Net_InetAddrToString(address, buffer)
  46.     Net_InetAddress address;
  47.     char    *buffer;
  48. {
  49.     register char *p;
  50.     Net_InetAddress tmp = address;
  51.  
  52. #define    UC(b)    (((int)b)&0xff)
  53.  
  54.     p = (char *)&tmp;
  55.     sprintf(buffer, "%d.%d.%d.%d", UC(p[0]), UC(p[1]), UC(p[2]), UC(p[3]));
  56.     return(buffer);
  57. }
  58.  
  59.